home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Interactive Media Design Review 1999
/
Interactive Media Design Review 1999.iso
/
mac
/
allfiles
/
Centri
/
Centri.dir
/
00288_Script_Magnify
< prev
next >
Wrap
Text File
|
1999-02-25
|
2KB
|
49 lines
property origSprite, csprite1, csprite2, csprite3,
on mouseUp me
set the stretch of sprite origSprite = TRUE
set the stretch of sprite csprite1 = TRUE
set the stretch of sprite csprite2 = TRUE
set the stretch of sprite csprite3 = TRUE
set the width of sprite origSprite = the width of sprite origSprite * 1.2
set the width of sprite csprite1 = the height of sprite csprite1
set the width of sprite csprite2 = the width of sprite csprite1
set the width of sprite csprite3 = the width of sprite csprite1
set the height of sprite origSprite = the height of sprite origSprite * 1.2
set the height of sprite csprite1 = the height of sprite origSprite * 0.1
set the height of sprite csprite2 = the height of sprite csprite1
set the height of sprite csprite3 = the height of sprite csprite1
updateStage
puppetSound 2, "click"
end
on getPropertyDescriptionList
set p_list = [ ¼
origSprite : [ #comment: " Screen:", ¼
#format: #integer, ¼
#default: 1 ] , ¼
csprite1 : [ #comment: "Control Sprite 1:", ¼
#format: #integer, ¼
#default: 1 ] , ¼
csprite2 : [ #comment: "Control Sprite 2:", ¼
#format: #integer, ¼
#default: 2 ] , ¼
csprite3 : [ #comment: "Control Sprite 3:", ¼
#format: #integer, ¼
#default: 3 ]¼
]
return p_list
end